home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 1996 May / Software of the Month Club 1996 May.iso / mac / Desktop Publishing / HTML 101 / HTML 101 / HTML 101.rsrc / TEXT_129.txt < prev    next >
Encoding:
Text File  |  1996-03-07  |  1.1 KB  |  51 lines

  1.  
  2. Basic Outline
  3.  
  4. This is the basic outline of an HTML document.
  5.  
  6. <HTML>
  7. <HEAD>
  8. <TITLE>
  9. </TITLE>
  10. </HEAD>
  11. <BODY>
  12. </BODY>
  13. </HTML>
  14.  
  15. Each line of code above is termed a tag. These tags enable your browser to *read* your document when it is stored on the WWW.
  16. Most but not all tags occur in pairs.
  17.  
  18. This basic outline can be broken down into two sections:
  19.  
  20. 1. The header.
  21.  
  22. 2. The body.
  23.  
  24. The header
  25.  
  26. <HEAD>
  27. <TITLE>
  28. </TITLE>
  29. </HEAD>
  30.  
  31. When you type a title for your page between the title tags, it may show on the title bar of the browser you are using. It can also be used during a search of pages on the WWW.
  32.  
  33. The body
  34.  
  35. <BODY>
  36. </BODY>
  37.  
  38. The rest of your document will be between these two body tags. That includes all the text, graphics and links.
  39.  
  40. <HTML> & </HTML>
  41.  
  42. These two tags identify the document as an HTML document.
  43.  
  44. Summary
  45.  
  46. ΓÇóTags are the lines of code that enable the browser to read the HTML document.
  47. ΓÇóA HTML document is broken into two parts-the header and the body.
  48. ΓÇóThe tags <HTML> & </HTML> identify the document as an HTML document.
  49.  
  50. Lets go to the first drill.
  51.